home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / boosters.arc / XCALENDA.PAS < prev    next >
Pascal/Delphi Source File  |  1985-10-01  |  410b  |  27 lines

  1. {$IBoDecl}
  2. {$IStrip}
  3. {$IPutStr}
  4. {$ICopies}
  5. {$IBoxul}
  6. {$IDows}
  7. {$ICenter}
  8. {$ICalendar}
  9.  
  10.  
  11. var mm, ccyy : integer;
  12.  
  13. BEGIN
  14.  
  15.    ClrScr;
  16.    repeat
  17.       PutStr( h,'Enter Month and Year: ', 1,1,112);
  18.       ClrEol;
  19.       Read( MM, CCYY);
  20.       if mm > 0 then
  21.       begin
  22.          if CCYY < 100 then CCYY := CCYY + 1900;
  23.          Calendar ( MM, CCYY, 20, 8);
  24.       end;
  25.    until mm = 0;
  26.  
  27. END.